home *** CD-ROM | disk | FTP | other *** search
/ Creating Your Own America Online Web Pages / Creating Your Own America Online Web Pages.iso / TOOLS / WEBBER / HTML32.DTD < prev    next >
Encoding:
Text File  |  1996-06-02  |  19.4 KB  |  564 lines

  1. <!ENTITY % HTML.Version
  2.         "-//W3C//DTD HTML 3.2//EN"
  3.  
  4.         -- Typical usage:
  5.  
  6.             <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
  7.             <html>
  8.             ...
  9.             </html>
  10.         --
  11.         >
  12.  
  13. <!--================== Deprecated Features Switch =========================-->
  14.  
  15. <!ENTITY % HTML.Deprecated "INCLUDE">
  16.  
  17. <!--================== Imported Names =====================================-->
  18.  
  19. <!ENTITY % Content-Type "CDATA"
  20.         -- meaning a MIME content type, as per RFC1521
  21.         -->
  22.  
  23. <!ENTITY % HTTP-Method "GET | POST"
  24.         -- as per HTTP specification
  25.         -->
  26.  
  27. <!ENTITY % URL "CDATA"
  28.         -- The term URL means a CDATA attribute
  29.            whose value is a Uniform Resource Locator,
  30.            See RFC1808 (June 95) and RFC1738 (Dec 94).
  31.         -->
  32.  
  33. <!-- 3.5 Parameter Entities -->
  34.  
  35. <!ENTITY % heading "H1|H2|H3|H4|H5|H6">
  36.  
  37. <!ENTITY % list "UL | OL |  DIR | MENU">
  38.  
  39. <![ %HTML.Deprecated [
  40.     <!ENTITY % preformatted "PRE | XMP | LISTING">
  41. ]]>
  42.  
  43. <!ENTITY % preformatted "PRE">
  44.  
  45. <!--================ Character mnemonic entities ==========================-->
  46.  
  47. <!ENTITY % ISOlat1 PUBLIC
  48.        "ISO 8879-1986//ENTITIES Added Latin 1//EN//">
  49. %ISOlat1;
  50.  
  51. <!--================ Entities for special symbols =========================-->
  52. <!-- &trade ­ and &cbsp are not widely deployed and so not included here -->
  53.  
  54. <!ENTITY copy   CDATA "©"   -- copyright sign     -->
  55. <!ENTITY reg    CDATA "®"   -- registered sign    -->
  56. <!ENTITY amp    CDATA "&"   -- ampersand          -->
  57. <!ENTITY gt     CDATA ">"   -- greater than       -->
  58. <!ENTITY lt     CDATA "<"   -- less than          -->
  59. <!ENTITY quot   CDATA """   -- double quote       -->
  60. <!ENTITY nbsp   CDATA " "  -- non breaking space -->
  61.  
  62. <!--=================== Text Markup =======================================-->
  63.  
  64. <!ENTITY % font "TT | I | B | STRIKE | BIG | SMALL | SUB | SUP">
  65.  
  66. <!ENTITY % phrase "EM | STRONG | DFN | CODE | SAMP | KBD | VAR | CITE">
  67.  
  68. <!ENTITY % special "A | IMG | APPLET | FONT | BR | SCRIPT | MAP">
  69.  
  70. <!ENTITY % form "INPUT | SELECT | TEXTAREA">
  71.  
  72. <!ENTITY % text "#PCDATA | %font | %phrase | %special | %form">
  73.  
  74. <!ELEMENT (%font|%phrase) - - (%text)*>
  75.  
  76. <!-- there are also 16 widely known color names although
  77.   the resulting colors are implementation dependent:
  78.  
  79.    aqua, black, blue, fuchsia, gray, green, lime, maroon,
  80.    navy, olive, purple, red, silver, teal, white, and yellow
  81.  
  82.  These colors were originally picked as being the standard
  83.  16 colors supported with the Windows VGA palette.
  84.  -->
  85.  
  86. <!ELEMENT FONT - - (%text)*     -- local change to font -->
  87. <!ATTLIST FONT
  88.     size    CDATA   #IMPLIED    -- [+]nn e.g. size="+1", size=4 --
  89.     color   CDATA   #IMPLIED    -- #RRGGBB in hex, e.g. red: color="#FF0000" --
  90.     >
  91.  
  92. <!ELEMENT BR    - O EMPTY   -- forced line break -->
  93. <!ATTLIST BR
  94.         clear (left|all|right|none) none -- control of text flow --
  95.         >
  96.  
  97. <!--================== HTML content models ================================-->
  98. <!--
  99.     HTML has three basic content models:
  100.  
  101.         %text       character level elements and text strings
  102.         %flow       block-like elements e.g. paragraphs and lists
  103.         %bodytext   as (b) plus headers and ADDRESS
  104. -->
  105.  
  106. <!ENTITY % block
  107.      "P | %list | %preformatted | DL | DIV | CENTER |
  108.       BLOCKQUOTE | FORM | ISINDEX | HR | TABLE">
  109.  
  110. <!-- %flow is used for DD and LI -->
  111.  
  112. <!ENTITY % flow "(%text | %block)*">
  113.  
  114. <!--=================== Document Body =====================================-->
  115.  
  116. <!ENTITY % body.content "(%heading | %text | %block | ADDRESS)*">
  117.  
  118. <!ENTITY % color "CDATA" -- a color specification: #HHHHHH @@ details? -->
  119.  
  120. <!ENTITY % body-color-attrs "
  121.         bgcolor %color #IMPLIED
  122.         text %color #IMPLIED
  123.         link %color #IMPLIED
  124.         vlink %color #IMPLIED
  125.         alink %color #IMPLIED
  126.         ">
  127.  
  128. <!ELEMENT BODY O O  %body.content>
  129. <!ATTLIST BODY
  130.         background %URL #IMPLIED  -- texture tile for document background --
  131.         %body-color-attrs;  -- bgcolor, text, link, vlink, alink --
  132.         >
  133.  
  134. <!ENTITY % address.content "((%text;) | P)*">
  135.  
  136. <!ELEMENT ADDRESS - - %address.content>
  137.  
  138. <!ELEMENT DIV - - %body.content>
  139. <!ATTLIST DIV
  140.         align   (left|center|right) left -- alignment of following text --
  141.         >
  142.  
  143. <!-- CENTER is a shorthand for DIV with ALIGN=CENTER -->
  144. <!ELEMENT center - - %body.content>
  145.  
  146. <!--================== The Anchor Element =================================-->
  147.  
  148. <!ELEMENT A - - (%text)* -(A)>
  149. <!ATTLIST A
  150.         name    CDATA   #IMPLIED    -- named link end --
  151.         href    %URL    #IMPLIED    -- URL for linked resource --
  152.         rel     CDATA   #IMPLIED    -- forward link types --
  153.         rev     CDATA   #IMPLIED    -- reverse link types --
  154.         title   CDATA   #IMPLIED    -- advisory title string --
  155.         >
  156.  
  157. <!--================== Client-side image maps ============================-->
  158.  
  159. <!-- These can be placed in the same document or grouped in a
  160.      separate document although this isn't yet widely supported -->
  161.  
  162. <!ENTITY % SHAPE "(rect|circle|poly|default)">
  163. <!ENTITY % COORDS "CDATA" -- comma separated list of numbers -->
  164.  
  165. <!ELEMENT MAP - - (AREA)*>
  166. <!ATTLIST MAP
  167.     name    CDATA   #IMPLIED
  168.     >
  169.  
  170. <!ELEMENT AREA - O EMPTY>
  171. <!ATTLIST AREA
  172.     shape   %SHAPE  rect
  173.     coords  %COORDS #IMPLIED  -- always needed except for shape=default --
  174.     href    %URL    #IMPLIED  -- this region acts as hypertext link --
  175.     nohref (nohref) #IMPLIED  -- this region has no action --
  176.     alt     CDATA   #REQUIRED
  177.     >
  178.  
  179. <!--================== The LINK Element ==================================-->
  180.  
  181. <!ENTITY % Types "CDATA"
  182.         -- See Internet Draft: draft-ietf-html-relrev-00.txt
  183.            LINK has been part of HTML since the early days
  184.            although few browsers as yet take advantage of it.
  185.  
  186.            Relationship values can be used in principle:
  187.  
  188.                 a) for document specific toolbars/menus when used
  189.                    with the LINK element in document head:
  190.                 b) to link to a separate style sheet (rel=stylesheet)
  191.                 c) to make a link to a script (rel=script)
  192.                 d) by stylesheets to control how collections of
  193.                    html nodes are rendered into printed documents
  194.                 e) to make a link to a printable version of this document
  195.                    e.g. a postscript or pdf version (rel=print)
  196. -->
  197.  
  198. <!ELEMENT LINK - O EMPTY>
  199. <!ATTLIST LINK
  200.         id      ID      #IMPLIED    -- SGML ID attribute --
  201.         href    %URL    #IMPLIED    -- URL for linked resource --
  202.         rel     %Types  #IMPLIED    -- forward link types --
  203.         rev     %Types  #IMPLIED    -- reverse link types --
  204.         title   CDATA   #IMPLIED    -- advisory title string --
  205.         >
  206.  
  207. <!--=================== Images ============================================-->
  208.  
  209. <!ENTITY % Length "CDATA" -- nn for pixels or nn% for percentage length -->
  210. <!ENTITY % Pixels "CDATA" -- integer representing length in pixels -->
  211.  
  212. <!-- Suggested widths are used for negotiating image size
  213.      with the module responsible for painting the image.
  214.      align=left or right cause image to float to margin
  215.      and for subsequent text to wrap around image -->
  216.  
  217. <!ENTITY % IAlign "(top|middle|bottom|left|right)">
  218.  
  219. <!ELEMENT IMG    - O EMPTY --  Embedded image -->
  220. <!ATTLIST IMG
  221.         src     %URL     #REQUIRED  -- URL of image to embed --
  222.         alt     CDATA    #IMPLIED   -- for display in place of image --
  223.         align   %IAlign  #IMPLIED   -- vertical or horizontal alignment --
  224.         height  %Pixels  #IMPLIED   -- suggested height in pixels --
  225.         width   %Pixels  #IMPLIED   -- suggested width in pixels --
  226.         border  %Pixels  #IMPLIED   -- suggested link border width --
  227.         hspace  %Pixels  #IMPLIED   -- suggested horizontal gutter --
  228.         vspace  %Pixels  #IMPLIED   -- suggested vertical gutter --
  229.         usemap  %URL     #IMPLIED   -- use client-side image map --
  230.         ismap   (ismap)  #IMPLIED   -- use server image map --
  231.         >
  232.  
  233. <!-- USEMAP points to a MAP element which may be in this document
  234.   or an external document, although the latter is not widely supported -->
  235.  
  236. <!--=================== Java APPLET tag ===================================-->
  237. <!--
  238.   This tag is supported by all java enabled browsers. Applet resources
  239.   (including their classes) are normally loaded relative to the document
  240.   URL (or <BASE> element if it is defined). The CODEBASE attribute is used
  241.   to change this default behavior. If the CODEBASE attribute is defined then
  242.   it specifies a different location to find applet resources. The value
  243.   can be an absolute URL or a relative URL. The absolute URL is used as is
  244.   without modification and is not effected by the documents <BASE> element.
  245.   When the codebase attribute is relative, then it is relative to the
  246.   document URL (or <BASE> tag if defined). <TEXTFLOW> avoids the problems
  247.   with SGML mixed content. It can always be omitted *except* when the APPLET
  248.   element hasn't any content. White space, comments and PARAM elements
  249.   don't count as content for this purpose. TEXTFLOW was introduced into
  250.   the DTD to satisfy SGML parsers, but is ignored by current Web browsers.
  251. -->
  252. <!ELEMENT APPLET - - (PARAM*, TEXTFLOW)>
  253. <!ATTLIST APPLET
  254.         codebase %URL     #IMPLIED   -- code base --
  255.         code     CDATA    #REQUIRED  -- class file --
  256.         name     CDATA    #IMPLIED   -- applet name --
  257.         alt      CDATA    #IMPLIED   -- for display in place of applet --
  258.         align    %IAlign  #IMPLIED   -- vertical or horizontal alignment --
  259.         height   %Pixels  #REQUIRED  -- suggested height in pixels --
  260.         width    %Pixels  #REQUIRED  -- suggested width in pixels --
  261.         hspace   %Pixels  #IMPLIED   -- suggested horizontal gutter --
  262.         vspace   %Pixels  #IMPLIED   -- suggested vertical gutter --
  263.         >
  264.  
  265. <!ELEMENT PARAM - O EMPTY>
  266. <!ATTLIST PARAM
  267.         name    NAME      #REQUIRED  -- The name of the parameter --
  268.         value   CDATA     #IMPLIED   -- The value of the parameter --
  269.         >
  270. <!ELEMENT TEXTFLOW O O (%text)* -- needed to bypass mixed content model -->
  271.  
  272. <!--
  273. Here is an example:
  274.  
  275.     <applet codebase="applets/NervousText"
  276.         code=NervousText.class
  277.         width=300
  278.         height=50>
  279.     <param name=text value="Java is Cool!">
  280.     <img src=sorry.gif alt="This looks better with Java support">
  281.     </applet>
  282. -->
  283.  
  284. <!--=================== Horizontal Rule ===================================-->
  285.  
  286. <!ELEMENT HR    - O EMPTY>
  287. <!ATTLIST HR
  288.         align (left|right|center) #IMPLIED
  289.         noshade (noshade) #IMPLIED
  290.         size  %Pixels #IMPLIED
  291.         width %Length #IMPLIED
  292.         >
  293. <!--=================== Paragraphs=========================================-->
  294.  
  295. <!ELEMENT P     - O (%text)*>
  296. <!ATTLIST P
  297.         align  (left|center|right) #IMPLIED
  298.         >
  299.  
  300. <!--=================== Headings ==========================================-->
  301.  
  302. <!--
  303.   There are six levels of headers from H1 (the most important)
  304.   to H6 (the least important).
  305. -->
  306.  
  307. <!ELEMENT ( %heading )  - -  (%text;)*>
  308. <!ATTLIST ( %heading )
  309.         align  (left|center|right) #IMPLIED
  310.         >
  311.  
  312. <!--=================== Preformatted Text =================================-->
  313.  
  314. <!-- excludes images and changes in font size -->
  315.  
  316. <!ENTITY % pre.exclusion "IMG|BIG|SMALL|SUB|SUP|FONT">
  317.  
  318. <!ELEMENT PRE - - (%text)* -(%pre.exclusion)>
  319. <!ATTLIST PRE
  320.         width NUMBER #implied -- is this widely supported? --
  321.         >
  322.  
  323. <![ %HTML.Deprecated [
  324.  
  325. <!ENTITY % literal "CDATA"
  326.         -- historical, non-conforming parsing mode where
  327.            the only markup signal is the end tag
  328.            in full
  329.         -->
  330.  
  331. <!ELEMENT (XMP|LISTING) - -  %literal>
  332. <!ELEMENT PLAINTEXT - O %literal>
  333.  
  334. ]]>
  335.  
  336. <!--=================== Block-like Quotes =================================-->
  337.  
  338. <!ELEMENT BLOCKQUOTE - - %body.content>
  339.  
  340. <!--=================== Lists =============================================-->
  341.  
  342. <!--
  343.     HTML 3.2 allows you to control the sequence number for ordered lists.
  344.     You can set the sequence number with the START and VALUE attributes.
  345.     The TYPE attribute may be used to specify the rendering of ordered
  346.     and unordered lists.
  347. -->
  348.  
  349. <!-- definition lists - DT for term, DD for its definition -->
  350.  
  351. <!ELEMENT DL    - -  (DT|DD)*>
  352. <!ATTLIST DL
  353.         compact (compact) #IMPLIED -- more compact style --
  354.         >
  355.  
  356. <!ELEMENT DT - O  (%text)*>
  357. <!ELEMENT DD - O  %flow;>
  358.  
  359. <!-- Ordered lists OL, and unordered lists UL -->
  360. <!ELEMENT (OL|UL) - -  (LI)*>
  361.  
  362. <!--
  363.        Numbering style
  364.     1   arablic numbers     1, 2, 3, ...
  365.     a   lower alpha         a, b, c, ...
  366.     A   upper alpha         A, B, C, ...
  367.     i   lower roman         i, ii, iii, ...
  368.     I   upper roman         I, II, III, ...
  369.  
  370.     The style is applied to the sequence number which by default
  371.     is reset to 1 for the first list item in an ordered list.
  372. -->
  373.  
  374. <!ENTITY % OLStyle "CDATA" -- "1|a|A|i|I" but SGML folds case -->
  375.  
  376. <!ATTLIST OL -- ordered lists --
  377.         type     (%OLStyle)  #IMPLIED   -- numbering style --
  378.         start     NUMBER     #IMPLIED   -- starting sequence number --
  379.         compact  (compact)   #IMPLIED   -- reduced interitem spacing --
  380.         >
  381.  
  382. <!-- bullet styles -->
  383.  
  384. <!ENTITY % ULStyle "disc|square|circle">
  385.  
  386. <!ATTLIST UL -- unordered lists --
  387.         type    (%ULStyle)   #IMPLIED   -- bullet style --
  388.         compact (compact)    #IMPLIED   -- reduced interitem spacing --
  389.         >
  390.  
  391. <!ELEMENT (DIR|MENU) - -  (LI)* -(%block)>
  392. <!ATTLIST DIR
  393.         compact (compact) #IMPLIED
  394.         >
  395. <!ATTLIST MENU
  396.         compact (compact) #IMPLIED
  397.         >
  398.  
  399. <!-- <DIR>              Directory list                  -->
  400. <!-- <DIR COMPACT>      Compact list style              -->
  401. <!-- <MENU>             Menu list                       -->
  402. <!-- <MENU COMPACT>     Compact list style              -->
  403.  
  404. <!ENTITY % LIStyle "%ULStyle|%OLStyle">
  405.  
  406. <!ELEMENT LI - O %flow -- list item -->
  407. <!ATTLIST LI
  408.         type   (%LIStyle)    #IMPLIED   -- list item style --
  409.         value    NUMBER      #IMPLIED   -- reset sequence number --
  410.         >
  411.  
  412. <!--================ Forms ===============================================-->
  413.  
  414. <!ELEMENT FORM - - %body.content -(FORM)>
  415. <!ATTLIST FORM
  416.         action %URL #REQUIRED -- server-side form handler --
  417.         method (%HTTP-Method) GET -- see HTTP specification --
  418.         enctype %Content-Type; "application/x-www-form-urlencoded"
  419.         >
  420.  
  421. <!ENTITY % InputType
  422.         "(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT
  423.             | RESET | FILE | HIDDEN | IMAGE)">
  424.  
  425. <!ELEMENT INPUT - O EMPTY>
  426. <!ATTLIST INPUT
  427.         type %InputType TEXT     -- what kind of widget is needed --
  428.         name  CDATA #IMPLIED     -- required for all but submit and reset --
  429.         value CDATA #IMPLIED     -- required for radio and checkboxes --
  430.         checked (checked) #IMPLIED -- for radio buttons and check boxes --
  431.         size CDATA  #IMPLIED     -- specific to each type of field --
  432.         maxlength NUMBER #IMPLIED
  433.         src   %URL  #IMPLIED     -- for fields with background images --
  434.         align  (top|middle|bottom|left|right) top -- image alignment --
  435.         >
  436.  
  437. <!ELEMENT SELECT - - (OPTION+)>
  438. <!ATTLIST SELECT
  439.         name CDATA #REQUIRED
  440.         size NUMBER #IMPLIED
  441.         multiple (multiple) #IMPLIED
  442.         >
  443.  
  444. <!ELEMENT OPTION - O (#PCDATA)*>
  445. <!ATTLIST OPTION
  446.         selected (selected) #IMPLIED
  447.         value  CDATA  #IMPLIED -- defaults to element content --
  448.         >
  449.  
  450. <!-- Multi-line text input field. -->
  451.  
  452. <!ELEMENT TEXTAREA - - (#PCDATA)*>
  453. <!ATTLIST TEXTAREA
  454.         name CDATA #REQUIRED
  455.         rows NUMBER #REQUIRED
  456.         cols NUMBER #REQUIRED
  457.         >
  458.  
  459. <!--======================= Tables ========================================-->
  460.  
  461. <!-- Widely deployed subset of the full table standard, see RFC XXXX -->
  462.  
  463. <!-- horizontal placement of table relative to window -->
  464. <!ENTITY % Where "(left|center|right)">
  465.  
  466. <!-- horizontal alignment attributes for cell contents -->
  467. <!ENTITY % cell.halign
  468.         "align  (left|center|right) #IMPLIED"
  469.         >
  470.  
  471. <!-- vertical alignment attributes for cell contents -->
  472. <!ENTITY % cell.valign
  473.         "valign  (top|middle|bottom|baseline)  #IMPLIED"
  474.         >
  475.  
  476. <!ELEMENT table - - (caption?, tr+)>
  477. <!ELEMENT tr - O (th|td)*>
  478. <!ELEMENT (th|td) - O %body.content>
  479.  
  480. <!ATTLIST table                       -- table element --
  481.         align     %Where;   #IMPLIED  -- table position relative to window --
  482.         width     %Length   #IMPLIED  -- table width relative to window --
  483.         border    %Pixels   #IMPLIED  -- controls frame width around table --
  484.         cellspacing %Pixels #IMPLIED  -- spacing between cells --
  485.         cellpadding %Pixels #IMPLIED  -- spacing within cells --
  486.         >
  487.  
  488. <!ELEMENT CAPTION - - (%text;)* -- table or figure caption -->
  489. <!ATTLIST CAPTION
  490.         align (top|bottom) #IMPLIED
  491.         >
  492.  
  493. <!ATTLIST tr                       -- table row --
  494.         %cell.halign;              -- horizontal alignment in cells --
  495.         %cell.valign;              -- vertical alignment in cells --
  496.         >
  497.  
  498. <!ATTLIST (th|td)                  -- header or data cell --
  499.         nowrap (nowrap)  #IMPLIED  -- suppress word wrap --
  500.         rowspan NUMBER   1         -- number of rows spanned by cell --
  501.         colspan NUMBER   1         -- number of cols spanned by cell --
  502.         %cell.halign;              -- horizontal alignment in cells --
  503.         %cell.valign;              -- vertical alignment in cells --
  504.         >
  505.  
  506. <!--================ Document Head ========================================-->
  507.  
  508. <!ENTITY % head.content "TITLE & ISINDEX? & BASE? & STYLE? &
  509.                             SCRIPT* & META* & LINK*">
  510.  
  511. <!ELEMENT HEAD O O  (%head.content)>
  512.  
  513. <!ELEMENT TITLE - -  (#PCDATA)*
  514.           -- The TITLE element is not considered part of the flow of text.
  515.              It should be displayed, for example as the page header or
  516.              window title.
  517.           -->
  518.  
  519. <!ELEMENT ISINDEX - O EMPTY>
  520. <!ATTLIST ISINDEX
  521.         prompt CDATA #IMPLIED -- prompt message -->
  522.  
  523. <!--
  524.     The BASE element gives the base URL for dereferencing relative
  525.     URLs, e.g.
  526.  
  527.          <BASE href="http://foo.com/images">
  528.          ...
  529.          <IMG SRC="bar.gif">
  530.  
  531.     The image is deferenced to
  532.  
  533.          http://foo.com/images/bar.gif
  534.  
  535.    In the absence of a BASE element the document URL should be used.
  536.    Note that this is not necessarily the same as the URL used to
  537.    request the document, as the base URL may be overridden by an HTTP
  538.    header accompanying the document.
  539. -->
  540.  
  541. <!ELEMENT BASE - O EMPTY>
  542. <!ATTLIST BASE
  543.         href %URL  #REQUIRED
  544.         >
  545.  
  546. <!ELEMENT META - O EMPTY    -- Generic Metainformation -->
  547. <!ATTLIST META
  548.         http-equiv  NAME    #IMPLIED  -- HTTP response header name  --
  549.         name        NAME    #IMPLIED  -- metainformation name       --
  550.         content     CDATA   #REQUIRED -- associated information     --
  551.         >
  552.  
  553. <!ELEMENT STYLE - O (#PCDATA)*    -- placeholder for style info -->
  554. <!ELEMENT SCRIPT - - (#PCDATA)*   -- placeholder for script statements -->
  555.  
  556. <!--================ Document Structure ===================================-->
  557.  
  558. <!ENTITY % version.attr "VERSION CDATA #FIXED '%HTML.Version;'">
  559.  
  560. <!ELEMENT HTML O O  (HEAD, BODY)>
  561. <!ATTLIST HTML
  562.         %version.attr;
  563.         >
  564.